home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / apache / conf / mod_auth_mysql.conf < prev    next >
Text File  |  2005-02-06  |  546b  |  14 lines

  1.    <Location /restricted>
  2.        AuthName "MySQL Secured Place"
  3.        AuthType Basic
  4.         require valid-user
  5.         AuthMySQLHost localhost
  6.         AuthMySQLDB webauth
  7.         AuthMySQLUser root       
  8.         AuthMySQLUserTable user_pwd
  9.        AuthMySQLNameField name
  10.         AuthMySQLPasswordField pass
  11.         ## AuthMySQLGroupTable user_grp (here do not modify this for the simple test!) 
  12.         ## AuthMySQLGroupField group (here do not modify this for the simple test!) 
  13.        AuthMySQLPwEncryption none 
  14.     </Location>